home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9202.ARJ / 1002109B < prev    next >
Text File  |  1992-06-02  |  310b  |  14 lines

  1.  
  2.    int index;   
  3.    #define SIZE_OUT_STRINGS 4
  4.  
  5.    char *out_strings[SIZE_OUT_STRINGS] 
  6.        = {"zero", "one", "two", "lots"}; 
  7.  
  8.    if (x < 0 || x >= SIZE_OUT_STRINGS - 1)
  9.        index = SIZE_OUT_STRINGS - 1;
  10.    else
  11.        index = x;  
  12.    printf ("The value is '%s'\n", out_strings[index]);
  13.  
  14.